home *** CD-ROM | disk | FTP | other *** search
- #ifndef __TCLOCKVIEW_H
- // Avoid include redundancy
- #define __TCLOCKVIEW_H
-
- // Copyright (c) 1993, University of Kansas, All Rights Reserved
- //
- // Include File: TClockVi.H
- // Purpose: Declaration of TClockView class
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 12-13-93 created
-
- // Constant defines
- #define Uses_TView
- #define Uses_TRect
-
- // Required includes
- #include<tv.h>
-
- // Class declarations
- class TClockView : public TView {
- public:
- TClockView(TRect& TR_dimensions);
- virtual void draw();
- virtual void update();
- private:
- char PastTime[9];
- char PresTime[9];
- };
-
- // Global variable declarations
-
- // Macros
-
- #endif // __TCLOCKVIEW_H
-